home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / csim / source.lha / source / C++SIM / ProcessCons.cc < prev    next >
C/C++ Source or Header  |  1993-06-14  |  360b  |  23 lines

  1. /*
  2.  * Copyright (C) 1993
  3.  *
  4.  * Department of Computing Science,
  5.  * The University,
  6.  * Newcastle upon Tyne,
  7.  * UK.
  8.  */
  9.  
  10. #ifndef PROCESSCONS_H_
  11. #include "ProcessCons.h"
  12. #endif
  13.  
  14.  
  15. ProcessCons::ProcessCons (Process &p, ProcessCons *n) { Proc = &p; Next = n; }
  16.  
  17.  
  18. #ifdef NO_INLINES
  19. #  define PROCESSCONS_CC_
  20. #  include "ProcessCons.n"
  21. #  undef PROCESSCONS_CC_
  22. #endif
  23.